{% extends 'base.html' %} {% load site_tags %} {% block title %}{{ course.title }} — Online LMS{% endblock %} {% block content %}

{{ course.title }}

{% if course.category %} {{ course.category.name }} {% endif %}

{{ course.short_description }}

{{ course.duration }} {{ course.get_module_count }} Modules {{ course.get_lesson_count }} Lessons {% if course.price == 0 %}Free{% else %}{% format_price course.price %}{% endif %} {% if course.start_date %} Starts: {{ course.start_date|date:"d M Y" }} {% endif %} {% if course.end_date %} Ends: {{ course.end_date|date:"d M Y" }} {% endif %}
{% if course.teachers.all %}
Taught by: {% for teacher in course.teachers.all %} {{ teacher.get_display_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% if course.thumbnail %} {{ course.title }} {% else %}
{% endif %}
{% if course.price == 0 %} Free {% else %} {% format_price course.price %} {% endif %}
{% if course.start_date or course.end_date %}
{% if course.start_date %}
Start Date: {{ course.start_date|date:"d M Y" }}
{% endif %} {% if course.end_date %}
End Date: {{ course.end_date|date:"d M Y" }}
{% endif %}
{% endif %} {% if not course.is_enrollment_open %}
Enrollment is closed — this course has already started.
{% endif %}
Pricing options
{% if course.has_learning_content and course.learning_price %}
Learning Path (self-paced): {{ course.currency }} {{ course.learning_price }} {% if course.duration_weeks %} · ~{{ course.duration_weeks }} weeks{% endif %}
{% if course.mentorship_available and course.mentorship_price %}
+ Mentorship add-on: {{ course.currency }} {{ course.mentorship_price }}
{% endif %}
Exam: {{ course.currency }} {{ course.exam_fee }} · Reattempt {{ course.currency }} {{ course.reattempt_fee }}
{% if course.bundle_discount_percent %}
Bundle (Learning + Exam): {{ course.currency }} {{ course.learning_exam_bundle_price }} ({{ course.bundle_discount_percent }}% off vs {{ course.currency }} {{ course.learning_plus_exam_list_price }})
{% endif %} {% endif %}
Direct exam only: {{ course.currency }} {{ course.effective_direct_exam_price }}
{% if course.subscription_enabled and course.subscription_price_monthly %}
One-time learning: {% if course.learning_price %}{{ course.currency }} {{ course.learning_price }}{% else %}—{% endif %} · Or {{ course.currency }} {{ course.subscription_price_monthly }}/month, cancel anytime — average finish in {{ course.estimated_completion_months }} month{{ course.estimated_completion_months|pluralize }} (≈{{ course.currency }} {{ course.estimated_subscription_total }}).
Subscription can cost more if you take longer — we show this so there are no surprises. Renewals are currently manual (pay each month); auto-billing comes when the gateway supports it.
{% endif %}
Exam {{ course.question_count_per_attempt }} MCQs · Pass {{ course.pass_percentage }}% · {{ course.duration_minutes }} min {% if course.has_sale_price %}
Sale exam price: {{ course.currency }} {{ course.display_exam_price }} {{ course.currency }} {{ course.exam_fee }} {% endif %} {% if course.bundle %}
Part of bundle: {{ course.bundle.name }} ({{ course.bundle.discount_percent }}% off package) {% endif %} {% if course.has_learning_content %}
Learning mix: {{ theory_percent }}% theory · {{ practice_percent }}% practice {% endif %} {% if course.requires_practical %}
Includes practical submission (certificate after approval){% endif %}
{% if course.enable_free_diagnostic %} Free skill check (no login) {% endif %} {% if user.is_authenticated %} {% if user.role == 'student' %} {% if enrollment %} {% if enrollment.status == 'approved' %}
You are enrolled in this course.
{% if course.has_learning_content %} Continue Learning Path {% endif %} Start / resume exam

Requires a verified question bank (import in admin). Soft anti-cheat — flagged after 3 tab switches, not auto-failed.

{% elif enrollment.status == 'pending' %}
Enrollment pending approval.
{% if not enrollment.payment_proof %} Upload Payment Proof {% else %} {% endif %} {% elif enrollment.status == 'rejected' %}
Enrollment was rejected. {% if enrollment.rejection_reason %}
Reason: {{ enrollment.rejection_reason }}{% endif %}
{% endif %} {% endif %} {% elif user.role == 'teacher' or user.role == 'admin' %} Manage Course {% endif %} {% else %}

Login or create a free account to continue.

{% endif %}

About This Course

{{ course.full_description|linebreaks }}
{% if course.start_date or course.end_date %}
Course Schedule
{% if course.start_date %}
Start Date
{{ course.start_date|date:"d M Y" }}
{% endif %} {% if course.end_date %}
End Date
{{ course.end_date|date:"d M Y" }}
{% endif %}
{% endif %}

Course Content

{% for module in modules %}

    {% for lesson in module.lessons.all %}
  • {% if lesson.video_url or lesson.video_file %} {% else %} {% endif %} {{ lesson.title }} {% if lesson.is_preview %} Preview {% endif %}
    {% if lesson.is_preview %} Preview {% elif enrollment and enrollment.status == 'approved' %} Watch {% else %} {% endif %}
  • {% endfor %}
{% empty %}

No modules available yet.

{% endfor %}
Your Instructors
{% for teacher in course.teachers.all %}
{% if teacher.profile_picture %} {% else %}
{% endif %}
{{ teacher.get_display_name }}
{{ teacher.bio|truncatechars:60 }}
{% empty %}

No instructors listed.

{% endfor %}
{% endblock %}